Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
It is tiring to setup logging and settings management in every application you write. Fable provides a single line solution to have simple logging to the console via bunyan. Add a simple configuration object and it can also write the log to a file. Or even mongodb!
$ npm install fable
You can have basic low-level application services in a single line of code.
var fable = require('fable').new();
fable.log.info('What are you doing, Dave?', {SomeColor: 'Red', CurrentFolder: __dirname });
Which will output the following to the terminal:
$ node index.js
{"name":"Fable","hostname":"MathBookAir","pid":38807,"level":30,"Source":"0x53e0793606800000","ver":"0.0.0","datum":{"SomeColor":"Red","CurrentFolder":"/Users/steven/FableDemo1"},"msg":"What are you doing, Dave?","time":"2015-08-31T03:55:02.555Z","v":0}
From this example, you can learn the following:
Fable uses the bunyan logging library. By default, the log messages all get sent to stdout.
To make the console log messages prettier, you can install the global bunyan library:
nim install -g bunyan
After which you can send logging output through bunyan, turning this from the quickstart above:
$ node index.js
{"name":"Fable","hostname":"MathBookAir","pid":38807,"level":30,"Source":"0x53e0793606800000","ver":"0.0.0","datum":{"SomeColor":"Red","CurrentFolder":"/Users/steven/FableDemo1"},"msg":"What are you doing, Dave?","time":"2015-08-31T03:55:02.555Z","v":0}
Into something more readable:
$ node index.js |bunyan
[2015-08-31T04:06:10.230Z] INFO: Fable/38992 on MathBookAir: What are you doing, Dave? (Source=0x53e07bc20d400000, ver=0.0.0)
datum: {
"SomeColor": "Red",
"CurrentFolder": "/Users/steven/FableDemo1"
}
If you want logging to go to a file, you can do that too. Just configure the LogStreams
array in the settings object like so:
{
"Product": "MyApplicationNameHere",
"ProductVersion": "2.1.8",
"UUID":
{
"DataCenter": 0,
"Worker": 0
},
"LogStreams":
[
{
"level": "trace",
"path": "./Logs/MyFavoriteLogFile.log"
}
]
}
As long as the ./Logs
folder exists, Bunyan will write to this log file instead.
We can stream log entries from a certain level or higher (e.g. in the previous example we are writing trace
and higher log lines to the file). You can then have a text log on rotation per application server, and a centralized mongodb log for the whole farm.
There are three log stream types supported:
Below is a JSON configuration example containing all of the three log stream types supported:
{
"Product": "MyApplicationNameHere",
"ProductVersion": "2.1.8",
"UUID":
{
"DataCenter": 0,
"Worker": 0
},
"LogStreams":
[
{
"level": "trace",
"path": "./Logs/Application.log"
},
{
"level": "trace",
"streamtype": "process.stdout"
},
{
"level": "info",
"streamtype": "mongodb"
}
]
}
Writes a log message to the info
log level. All bunyan log levels are supported, as the log object here is just a reference to bunyan.
This means you can also use the following log levels (taken from the bunyan documentation):
fatal
(60): The service/app is going to stop or become unusable now. An operator should definitely look into this soon.error
(50): Fatal for a particular request, but the service/app continues servicing other requests. An operator should look at this soon(ish).warn
(40): A note on something that should probably be looked at by an operator eventually.info
(30): Detail on regular operation.debug
(20): Anything else, i.e. too verbose to be included in "info" level.trace
(10): Logging from external libraries used by your app or very detailed application logging.Fun note -- if you use a _Fable.log.fatal('Oh my gosh cats are everywhere!')
call to the fatal
stream, the bunyon console logger will invert the text by the log entry making it easier to see.
Arguments
message
- A string message for the log entry textrawObject
- A javascript object containing anything else you want loggedExample
fable.log.info('What are you doing, Dave?', {SomeColor: 'Red', CurrentFolder: __dirname });
// This just wrote out a nice log line to wherever you have your log streams pointing to
The excellent white paper Out of the Tar Pit describes a critical problem with how we manage state in most large-scale application designs. One of the fronts we use to combat this state management issue is by separating the non-business state of the application out. The easiest example of this is the address list for other servers in your data center. We certainly need to know the address of the database server, but this address has nothing to do with how many widgets are in stock for your site visitors to purchase.
Therefore we provide a configuration management system in Fable. You can load thse configurations from files, pass them in or modify them in real-time.
These configuration settings are meant to be just the state your application needs to run in its environment and as configured.
You can pass settings into fable in the constructor:
var _Fable = require('fable').new({Product: 'MyProduct', ProductVersion: '1.3.8'});
// Fill in other settings
_Fable.settingsManager.fill({ApacheStormAddress: '192.168.167.100'});
// Now access a setting
console.log("Apache Storm is located at: "+_Fable.settings.ApacheStormAddress);
// ...printing out "Apache Storm is located at: 192.168.167.100" to the console
Access to the settings values which have been set. Fable comes with a number of default settings:
// Default Fable settings
var _SettingsDefaults = (
{
// This is used for logging and API identification
Product: 'Fable',
ProductVersion: '0.0.0',
// The default port for an API server
APIServerPort: 8080,
// The location for a config file to load
ConfigFile: false,
// Identification for the log and record GUID generators
UUID: (
{
DataCenter: 0,
Worker: 0
}),
// The session handler configuration
SessionStrategy: "memcached",
MemcachedURL: "127.0.0.1:11211",
// The MongoDB URL (this is used by the logger)
MongoDBURL:"mongodb://127.0.0.1/Fable",
// The MySQL Server connection data
MySQL:
{
"Server": "127.0.0.1",
"Port": 3306,
"User": "ENTER_USER_HERE",
"Password": "ENTER_PASSWORD_HERE",
"Database": "ENTER_DATABASE_HERE",
"ConnectionPoolLimit": 20
},
// A sane default log stream
LogStreams: [{streamtype:'process.stdout', level:'trace'}]
});
Example
console.log("Wiring up routes for "+_Fable.settings.Product);
// Which writes "Wiring up routes for WHATEVER_VALUE_YOU_PUT_IN_THE_PRODUCT_SETTING"
Constructs the fable object and sets the default settings to whatever is passed in as settingsObject
. Fable allows you to create clones by calling Fable.new()
from any fable object, and these clones will use the same default settings as passed in with the first construction.
Arguments
settingsObject
- An object to use as the default settingsExample
var _Fable = require('fable').new({Product: 'MyCoolProduct', ProductVersion: '1.13.8'});
// _Fable is now ready to use.
Fills in values in the settings object without overwriting values already there. This is especially useful for maintaining libraries that rely on fable. You can fill
any required settings to default values after your library has been instantiated.
Arguments
settingsObject
- An object to fill in settings withExample
// Assuming the _Fable has already been initialized
_Fable.settingsManager.fill({MaximumThumbnailCacheSize: 50});
// If MaximumThumbnailCacheSize was not set, it is now!
Merge in values to settings, destructively overwriting previous values if they were already there.
Arguments
settingsObject
- An object to merge into settingsExample
// Assuming the _Fable has already been initialized
_Fable.settingsManager.merge({RequestTimeout: 1500});
// Regardless of whether RequestTimeout was set before merge, it is now 1500
When instantiating fable, you can define a couple configuration values which will help generate UUIDs with some encoded information. This includes the DataCenter and Worker portions of the settings object. These two values are then deconstructible from the UUIDs generated using the following code:
var fable = require('fable').new();
var uuid = fable.getUUID();
console.log('My UUID is: '+uuid);
Resulting in:
steven at MathBookPro in ~/FableTest
$ node index.js
My UUID is: 0x53e122bc8f400000
steven at MathBookPro in ~/FableTest
$ node index.js
My UUID is: 0x53e122c213800000
Return a unique identifier, with encoded information about the data center and worker portion of the configuration file.
Example
// Assuming the _Fable has already been initialized
var uuid = fable.getUUID();
// The uuid variable now contains a unique string.
FAQs
A service dependency injection, configuration and logging library.
The npm package fable receives a total of 1,312 weekly downloads. As such, fable popularity was classified as popular.
We found that fable demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.